/* ==========================================
   ROOT VARIABLES & COLORS
   ========================================== */
:root {
    /* Primary Colors */
    --primary-color: #F16A1C;
    --primary-dark: #D85A15;
    --primary-light: #FF7E35;
    --primary-lighter: #FFA366;
    
    /* Secondary Colors */
    --secondary-color: #1A1A2E;
    --secondary-light: #16213E;
    --secondary-lighter: #0F3460;
    
    /* Accent Colors */
    --accent-orange: #FF6B35;
    --accent-yellow: #FFB800;
    --accent-blue: #00B4D8;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-dark: #1A1A2E;
    
    /* Background Colors */
    --bg-primary: #0A0A14;
    --bg-secondary: #1A1A2E;
    --bg-card: #16213E;
    --bg-overlay: rgba(10, 10, 20, 0.95);
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #F16A1C 0%, #FF8C42 100%);
    --gradient-secondary: linear-gradient(135deg, #1A1A2E 0%, #0F3460 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 10, 20, 0.8) 0%, rgba(10, 10, 20, 0.95) 100%);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --card-padding: 30px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-orange: 0 8px 32px rgba(241, 106, 28, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-popup: 1000;
    --z-header: 100;
    --z-overlay: 999;
}

/* ==========================================
   FONT FACES
   ========================================== */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Exo2';
    src: url('../fonts/Exo2-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'OpenSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
}

/* Basketball Court Pattern Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(241, 106, 28, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(241, 106, 28, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

input, textarea {
    font-family: inherit;
    outline: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo2', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: transform var(--transition-normal);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF8C42 0%, #FFB800 100%);
    z-index: -1;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
}

.btn:hover::after {
    transform: translateX(0);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary::before,
.btn-secondary::after {
    display: none;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-primary);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* ==========================================
   CARDS
   ========================================== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--card-padding);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(241, 106, 28, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(241, 106, 28, 0.3);
}

.card:hover::before {
    transform: scaleX(1);
}

/* ==========================================
   FORMS
   ========================================== */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 2px solid rgba(241, 106, 28, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(241, 106, 28, 0.1);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ==========================================
   ANIMATIONS & KEYFRAMES
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Fade In Up Animation Class */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
    opacity: 0;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

.primary-color { color: var(--primary-color); }
.white-color { color: var(--text-primary); }

.flex { display: flex; }
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Basketball Decoration Elements */
.basketball-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(241, 106, 28, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.basketball-decoration::before,
.basketball-decoration::after {
    content: '';
    position: absolute;
    background: rgba(241, 106, 28, 0.1);
}

.basketball-decoration::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.basketball-decoration::after {
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
}

/* Glowing Effect */
.glow {
    position: relative;
}

.glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(241, 106, 28, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.glow:hover::after {
    opacity: 1;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --card-padding: 20px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* ==========================================
   HEADER STYLES
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-overlay);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(241, 106, 28, 0.1);
    z-index: var(--z-header);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(10, 10, 20, 0.98);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-normal);
}

.header-logo:hover img {
    transform: scale(1.05);
}

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    transition: color var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
}

.header-phone svg {
    color: var(--primary-color);
}

.header-phone:hover {
    color: var(--primary-color);
    background: rgba(241, 106, 28, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content Spacing */
.main-content {
    padding-top: 80px;
    min-height: 100vh;
}

/* ==========================================
   FOOTER STYLES
   ========================================== */
.footer {
    background: var(--gradient-secondary);
    padding: 80px 0 30px;
    position: relative;
    border-top: 2px solid var(--primary-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
    padding: 8px 0;
}

.footer-contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-contact-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    left: 5px;
}

.footer-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(241, 106, 28, 0.2);
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* ==========================================
   AGE VERIFICATION POPUP
   ========================================== */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-popup);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.age-popup.active {
    opacity: 1;
    visibility: visible;
}

.age-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
}

.age-popup-content {
    position: relative;
    background: var(--gradient-secondary);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 50px;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--shadow-orange);
    animation: fadeInUp 0.5s ease forwards;
    text-align: center;
}

.age-popup-icon {
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-orange);
}

.age-popup-icon svg {
    color: var(--text-primary);
}

.age-popup-title {
    font-size: 2rem;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-popup-text {
    text-align: left;
    margin-bottom: 35px;
}

.age-popup-text p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.age-popup-actions {
    display: flex;
    justify-content: center;
}

/* ==========================================
   RESPONSIVE - HEADER & FOOTER
   ========================================== */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav.mobile-active {
        display: block;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-overlay);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(241, 106, 28, 0.2);
        padding: 20px 0;
        animation: slideInLeft 0.3s ease forwards;
    }
    
    .header-nav.mobile-active .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .header-nav.mobile-active .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(241, 106, 28, 0.1);
    }
    
    .header-nav.mobile-active .nav-link {
        display: block;
        padding: 15px 20px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-actions {
        gap: 10px;
    }
    
    .header-phone span {
        display: none;
    }
    
    .header-phone {
        padding: 8px;
    }
    
    .header-actions .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .age-popup-content {
        padding: 35px 25px;
        width: 95%;
    }
    
    .age-popup-icon {
        width: 80px;
        height: 80px;
    }
    
    .age-popup-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .age-popup-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 40px;
    }
    
    .footer-logo img {
        height: 50px;
    }
}

/* ==========================================
   HOME PAGE - HERO SECTION
   ========================================== */
.hero-section {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(241, 106, 28, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-right: 20px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.download-form {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 2px solid rgba(241, 106, 28, 0.2);
    box-shadow: var(--shadow-md);
}

.download-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.phone-form {
    width: 100%;
}

.form-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.phone-input {
    flex: 1;
    font-size: 1rem;
}

.form-message {
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
}

.hero-image {
    position: relative;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-orange);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-slow);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0.3;
    pointer-events: none;
}

/* ==========================================
   HOME PAGE - TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background: var(--bg-secondary);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    text-align: center;
    padding: 40px 30px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.testimonial-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: var(--shadow-orange);
    color: var(--text-primary);
}

.testimonial-content {
    text-align: left;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
    font-family: Georgia, serif;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.testimonial-rating {
    font-size: 1.1rem;
}

/* ==========================================
   HOME PAGE - COURT VISION SECTION
   ========================================== */
.court-vision-section {
    background: var(--bg-primary);
    position: relative;
}

.court-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.court-vision-image {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.court-vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.court-vision-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
    animation: bounce 3s ease-in-out infinite;
}

.court-vision-badge svg {
    color: var(--text-primary);
}

.court-vision-text {
    padding-left: 20px;
}

.court-vision-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.court-vision-description {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 40px;
}

.court-vision-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 2px solid rgba(241, 106, 28, 0.2);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-family: 'Exo2', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ==========================================
   HOME PAGE - FEATURES SECTION
   ========================================== */
.features-section {
    background: var(--bg-secondary);
    position: relative;
}

.features-grid {
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: transparent;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: rotate(360deg);
    box-shadow: var(--shadow-orange);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   RESPONSIVE - HOME PAGE
   ========================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        height: 400px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .court-vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .court-vision-text {
        padding-left: 0;
    }
    
    .court-vision-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .download-form {
        padding: 20px;
    }
    
    .form-input-group {
        flex-direction: column;
    }
    
    .court-vision-image {
        height: 350px;
    }
    
    .court-vision-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 40px;
    }
    
    .hero-image {
        height: 300px;
    }
}

/* ==========================================
   PAGE HERO (COMMON FOR INNER PAGES)
   ========================================== */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241, 106, 28, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.page-hero-text {
    padding-right: 30px;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.page-hero h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.page-hero-image {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-orange);
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ==========================================
   HOW TO PLAY PAGE - STEPS SECTION
   ========================================== */
.steps-section {
    background: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.step-card {
    position: relative;
    padding: 40px 35px 35px;
    overflow: visible;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Exo2', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: transparent;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.step-card:hover .step-icon {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: scale(1.1) rotate(360deg);
    box-shadow: var(--shadow-orange);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 1rem;
    line-height: 1.8;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--secondary-lighter) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(241, 106, 28, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-secondary);
}

/* ==========================================
   RESPONSIVE - INNER PAGES
   ========================================== */
@media (max-width: 1024px) {
    .page-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-hero-text {
        padding-right: 0;
    }
    
    .page-hero-image {
        height: 350px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero-image {
        height: 300px;
    }
    
    .step-card {
        padding: 35px 25px 30px;
    }
    
    .step-number {
        font-size: 3rem;
        top: -15px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 90px 0 50px;
    }
}

/* ==========================================
   POINT SYSTEMS PAGE
   ========================================== */
.points-hero {
    text-align: center;
}

.points-hero .page-hero-text {
    max-width: 900px;
    margin: 0 auto;
    padding-right: 0;
}

.points-section {
    background: var(--bg-primary);
}

.points-grid {
    display: grid;
    gap: 50px;
}

.points-category {
    width: 100%;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 3px solid;
}

.category-title.positive {
    color: #4CAF50;
    border-color: #4CAF50;
}

.category-title.negative {
    color: #F44336;
    border-color: #F44336;
}

.category-title svg {
    flex-shrink: 0;
}

.points-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    transition: all var(--transition-normal);
}

.point-item.special {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(241, 106, 28, 0.1) 0%, transparent 100%);
}

.point-item:hover {
    transform: translateY(-8px);
}

.point-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.point-icon.positive {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    color: #4CAF50;
}

.point-icon.negative {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #F44336;
    color: #F44336;
}

.point-icon.mvp {
    background: var(--gradient-primary);
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
    box-shadow: var(--shadow-orange);
}

.point-item:hover .point-icon {
    transform: scale(1.1) rotate(360deg);
}

.point-details {
    flex: 1;
}

.point-details h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.point-value {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Exo2', sans-serif;
    margin-bottom: 10px;
}

.point-value.positive {
    color: #4CAF50;
}

.point-value.negative {
    color: #F44336;
}

.point-value.mvp {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
}

.point-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Strategy Section */
.strategy-section {
    margin-top: 60px;
}

.strategy-card {
    text-align: center;
    padding: 50px;
    background: var(--gradient-secondary);
    border: 2px solid var(--primary-color);
}

.strategy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: var(--shadow-orange);
}

.strategy-icon svg {
    color: var(--text-primary);
}

.strategy-card h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.strategy-tips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(241, 106, 28, 0.2);
    transition: all var(--transition-normal);
}

.tip-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.tip-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.tip-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   RESPONSIVE - POINT SYSTEMS
   ========================================== */
@media (max-width: 768px) {
    .points-list {
        grid-template-columns: 1fr;
    }
    
    .strategy-tips {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strategy-card {
        padding: 35px 25px;
    }
    
    .point-item {
        padding: 25px 20px;
    }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-info > p {
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 2px solid rgba(241, 106, 28, 0.2);
    transition: all var(--transition-normal);
}

.contact-info-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
}

.contact-info-icon svg {
    color: var(--text-primary);
}

.contact-info-details {
    flex: 1;
}

.contact-info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-info-details a {
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.contact-info-details a:hover {
    color: var(--primary-light);
}

.contact-info-details p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(241, 106, 28, 0.1) 0%, transparent 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(241, 106, 28, 0.2);
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(241, 106, 28, 0.2);
}

.contact-form-header {
    margin-bottom: 35px;
    text-align: center;
}

.contact-form-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-form-header p {
    font-size: 1rem;
    margin: 0;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.contact-form .btn svg {
    transition: transform var(--transition-normal);
}

.contact-form .btn:hover svg {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    padding: 30px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   RESPONSIVE - CONTACT PAGE
   ========================================== */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        position: static;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-item {
        padding: 20px 15px;
    }
}

/* ==========================================
   LEGAL PAGES (PRIVACY, TERMS, COOKIE)
   ========================================== */
.legal-header {
    padding: 120px 0 80px;
    background: var(--gradient-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241, 106, 28, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.legal-header-content {
    position: relative;
    z-index: 2;
}

.legal-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
}

.legal-date {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.legal-content {
    background: var(--bg-primary);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 50px;
    padding: 35px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 2px solid rgba(241, 106, 28, 0.1);
    transition: all var(--transition-normal);
}

.legal-section:hover {
    border-color: rgba(241, 106, 28, 0.3);
    box-shadow: var(--shadow-md);
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(241, 106, 28, 0.3);
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.legal-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-contact {
    margin-top: 20px;
}

.legal-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-orange);
}

.legal-contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(241, 106, 28, 0.4);
}

.legal-contact-link svg {
    flex-shrink: 0;
}

/* ==========================================
   RESPONSIVE - LEGAL PAGES
   ========================================== */
@media (max-width: 768px) {
    .legal-header {
        padding: 100px 0 60px;
    }
    
    .legal-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-list li {
        padding-left: 30px;
        font-size: 1rem;
    }
}

